home *** CD-ROM | disk | FTP | other *** search
/ PC User 2002 April / Disc 2 / PCUSER0402D2.iso / software / utils / files / wincron.exe / data1.cab / Sample_Scripts / whatever_test.tg < prev   
Encoding:
Text File  |  2001-10-20  |  476 b   |  26 lines

  1. ## whatever_test
  2. # This script will change based on whatever feature is currently being tested.
  3.  
  4. {
  5.     -name whatever_test
  6.     -start -delay 0 0 0 5
  7.     -action -onerror operation_fail
  8.  
  9.     # match anything
  10.     -action -match .* .* .* .* .*
  11.  
  12.     # fail everything
  13.     -action -match -except .* .* .* .* .*
  14.  
  15.     -action -inc 0 0 0 1
  16.  
  17. }
  18.  
  19. # operation failed
  20. {
  21.     -name operation_fail
  22.     -action -print Time Clause exception:
  23.     -action -print %TG.LAST_ERROR%
  24.     -action -return break
  25. }
  26.